home *** CD-ROM | disk | FTP | other *** search
- unit common;
-
- interface
-
- uses menus, classes;
-
- const
- cPLUGIN_DESCRIBE = 'DescribePlugin';
- cPLUGIN_INIT = 'InitPlugin';
- cPLUGIN_INITEVENTS = 'InitPluginEvents';
-
- type
- TPluginDescribe = procedure (var Desc: string); stdcall;
- TPluginInit = procedure (ParentMenu: TMainMenu); stdcall;
- TInitPluginEvents = procedure (lstResize: TList); stdcall;
- TResizeProc = procedure (var x, y: integer); stdcall;
-
- implementation
-
- end.
-